Skip to main content
Version: 1.0.2

Decline Inbound Request

The DeclineTchTransaction API enables to deline an inbound RTP transaction.

Method: POST

{{URL}}/PLMASTER/jsonrpc

Headers

NameValue
Content-Typeapplication/json

Example

Payload Parameters
ParameterDescription

ID

Mandatory

String

Unique ID of the transaction

Example: " 4365682"

reason

Mandatory

String

Reason for declining the transaction

Example: "ated"


curl --location --request GET 'https://plus.netxd.com/PLMASTER/jsonrpc' \
--header 'Content-Type: application/json' \
--data '{"method":"TransactionService.DeclineTchTransaction","id":"1","params":{"api":{"credential":"Basic eWFzaEBuZXR4ZC5jb206MjRmMTJiYjE3MTJmNDI4NWFiM2M4YTE2OThkNTRhN2I=","signature":"MEYCIQCpZS38DSEfuW2qOjkNKxjC+oRt0ZY4TjYJBy53SjUfQQIhAJLTPDQRU1L/h8kde/kIGfX+YlOxoPKbhRaP3dnxb4ag","apiKey":"24f12bb1712f4285ab3c8a1698d54a7b","keyId":"167234"},"payload":{"ID":"4365682","reason":"ated"}}}'

Request Body


{
"method": "TransactionService.DeclineTchTransaction",
"id": "1",
"params": {
"api": {
"credential": "Basic eWFzaEBuZXR4ZC5jb206MjRmMTJiYjE3MTJmNDI4NWFiM2M4YTE2OThkNTRhN2I=",
"signature": "MEYCIQCpZS38DSEfuW2qOjkNKxjC+oRt0ZY4TjYJBy53SjUfQQIhAJLTPDQRU1L/h8kde/kIGfX+YlOxoPKbhRaP3dnxb4ag",
"apiKey": "24f12bb1712f4285ab3c8a1698d54a7b",
"keyId": "167234"
},
"payload": {
"ID": "4365682",
"reason": "ated"
}
}
}

Response: 200

Response Parameters
ParameterDescription

id

String

Unique ID of the Request

Example: " 1"

result

Object

message

String

Message that indicates whether the transaction is declined or not

Example: " Transaction Declined Successfully"

jsonrpc

String

JSON RPC Version

Example: " 2.0"

Response Body


{
"id": "1",
"result": {
"message": "Transaction Declined Successfully"
},
"jsonrpc": "2.0"
}